import { getLocalizedMdx } from "@/shared/lib/mdx/load-mdx"; import { Typography } from "@/components/ui/typography"; type PageProps = { params: Promise<{ locale: string }>; }; export default async function PrivacyPolicyPage({ params }: PageProps) { const { locale } = await params; const content = await getLocalizedMdx("privacy-policy", locale); return (
{locale === "fr" ? "Voici comment nous traitons vos données personnelles." : "How we handle your personal data at Workout Cool."}